home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / cgraphix / cpnts.c < prev    next >
Text File  |  1986-04-24  |  361b  |  23 lines

  1. /* «RM120»«PL99999»«TS4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76» */
  2. #include    <stdio.h>
  3. #define    EXTERN    extern
  4. #include    <typedef.h>
  5.  
  6.  
  7. main()
  8. {
  9.     int i;
  10.  
  11.  
  12.     InitGraphic();                /* init the system and screen    */
  13.     DrawBorder();
  14.  
  15.     for (i = 1; i < 199; i++)
  16.         DrawPoint((double)i, (double)i);
  17.  
  18.     inkey();
  19.  
  20.     LeaveGraphic();
  21. }
  22.  
  23.